home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / cm95_10.zip / SCANDISK.DLL / TEXT / WILMSHELPERS < prev   
Text File  |  1996-10-29  |  1KB  |  26 lines

  1. ;****************************************************************************
  2. ; Make sure the proper options are set. The default is don't display summary,
  3. ; & write to log file (appending to existing log file).
  4. ;****************************************************************************
  5. :SetupOptions
  6. Sendkey ('!%scantype%') ; 'S'tandard or 'T'horough, from pg. 2
  7. Sendkey ('!a') ; Advanced options dialog...
  8. Sendkey ('e')  ; Never display summary dialog
  9. Sendkey ('p')  ; Log results to file, replacing old one
  10. Sendkey ('~')  ; Back to main window
  11. Sendkey ('!s') ; Start button
  12. return
  13.  
  14. ;****************************************************************************
  15. ; Wait until ScanDisk's results window pops up. If no errors found then close
  16. ; it, else keep it up for user to see when they come in...
  17. ;****************************************************************************
  18. :WaitForEOJ
  19. While (WinExist ('ScanDisk') && WinExistChild ('ScanDisk','Cancel'))
  20.     Delay (5)
  21.     MouseMove (100+random(10), 100, "", "")
  22. EndWhile
  23. Sendkey ('{esc}')
  24. return
  25. <EOT>
  26.